home *** CD-ROM | disk | FTP | other *** search
- //
- // The Fusion Library Interface for DOS
- // Version 1.06c
- // Copyright (C) 1990, 1991, 1992
- // Software Dimensions
- //
- // BlazeClass
- //
-
- #ifndef __BCPLUSPLUS__
- #pragma inline
- #endif
-
- #include "fli.h"
- #include "colors.h"
-
- #ifdef __BCPLUSPLUS__
- #pragma hdrstop
- #endif
-
- #define I asm
-
- //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
- //
- // FreshWorkSpace()
- //
- // Refreshes the screen and provides a fresh workspace and hides the cursor
- //
- //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-
- void BlazeClass::FreshWorkSpace()
- {
- BlazeClass Blaze;
-
- MouseHide();
-
- Blaze.InvisibleCursor();
-
- Blaze.CharacterFill(0,1,Blaze.WhatWidth(),Blaze.WhatHeight()-2,
- Colors.WorkSpace,176);
- Blaze.CharacterRepeater(0,0,Blaze.WhatWidth(),Colors.MenuBarNormal,' ');
- Blaze.CharacterRepeater(0,Blaze.WhatHeight()-1,Blaze.WhatWidth(),
- Colors.PromptLineNormal,' ');
-
- MouseShow();
- }
-